home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 21 / AACD 21.iso / AACD / Utilities / Ghostscript / src / icsmap.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-01  |  1.8 KB  |  47 lines

  1. /* Copyright (C) 1994, 1999 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of AFPL Ghostscript.
  4.   
  5.   AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author or
  6.   distributor accepts any responsibility for the consequences of using it, or
  7.   for whether it serves any particular purpose or works at all, unless he or
  8.   she says so in writing.  Refer to the Aladdin Free Public License (the
  9.   "License") for full details.
  10.   
  11.   Every copy of AFPL Ghostscript must include a copy of the License, normally
  12.   in a plain ASCII text file named PUBLIC.  The License grants you the right
  13.   to copy, modify and redistribute AFPL Ghostscript, but only under certain
  14.   conditions described in the License.  Among other things, the License
  15.   requires that the copyright notice and this notice be preserved on all
  16.   copies.
  17. */
  18.  
  19. /*$Id: icsmap.h,v 1.2 2000/09/19 19:00:42 lpd Exp $ */
  20. /* Interface to shared routines for loading the cached color space maps. */
  21.  
  22. #ifndef icsmap_INCLUDED
  23. #  define icsmap_INCLUDED
  24.  
  25. /*
  26.  * Set up to load a cached map for an Indexed or substituted Separation
  27.  * color space.  The implementation is in zcsindex.c.  When the map1
  28.  * procedure is called, the following structure is on the e_stack:
  29.  */
  30. #define num_csme 5
  31. #  define csme_num_components (-4)    /* t_integer */
  32. #  define csme_map (-3)        /* t_struct (bytes) */
  33. #  define csme_proc (-2)    /* -procedure- */
  34. #  define csme_hival (-1)    /* t_integer */
  35. #  define csme_index 0        /* t_integer */
  36. /*
  37.  * Note that the underlying color space parameter is a direct space, not a
  38.  * base space, since the underlying space of an Indexed color space may be
  39.  * a Separation or DeviceN space.
  40.  */
  41. int zcs_begin_map(P6(i_ctx_t *i_ctx_p, gs_indexed_map ** pmap,
  42.              const ref * pproc, int num_entries,
  43.              const gs_direct_color_space * base_space,
  44.              op_proc_t map1));
  45.  
  46. #endif /* icsmap_INCLUDED */
  47.